Skip to main content

ConcatenateStrings

Type

operator

Summary

Concatenates Left and Right.

Syntax

<Left> & <Right>

Description

The result consists of the chars of Left followed by those of Right.

Parameters

NameTypeDescription

Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Examples

variable tVar as String
put "car" & "pet" into tVar -- tVar contains "carpet"
Thank you for your feedback!

Was this page helpful?